# Define the columns
participant <- c("louis", "paula", "vincenzo")
score <- c(67, 85, 32)
# Combine the columns into a data frame
mydf <- data.frame(participant, score)
mydfoutput
participant score
1 louis 67
2 paula 85
3 vincenzo 32